* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.new-message-box::after {
    content: "";
    clear: both;
    display:table
}

.new-message-box {
    display: none;
    position: fixed;
    top: 90px;
    right: 0px;
    margin-left: 15px;
    padding-left: 20px;
    margin-bottom: 25px !important;
}

#noscript {
    display: block;
}

    .new-message-box p {
        font-size: 14px;
        font-weight: 600;
        color: black;
    }

.info-tab {
    width: 40px;
    height: 40px;
    display: inline-block;
    position: relative;
    top: 8px;
}

.info-tab {
    float: left;
    margin-left: -23px;
}

    .info-tab i::before {
        width: 24px;
        height: 24px;
        box-shadow: inset 12px 0 13px rgba(0,0,0,0.5);
    }

    .info-tab i::after {
        width: 0;
        height: 0;
        border: 12px solid transparent;
        border-bottom-color: #fff;
        border-left-color: #fff;
        bottom: -18px;
    }

    .info-tab i::before, .info-tab i::after {
        content: "";
        display: inline-block;
        position: absolute;
        left: 0;
        bottom: -17px;
        transform: rotateX(60deg);
    }

.note-box, .warning-box, .tip-box-success, .tip-box-danger, .tip-box-alert {
    padding: 20px 8px 12px 26px;
}


/***Success****/

.new-message-box-success {
    background: #eeeeee;
    padding: 3px;
    margin: 10px 0;
}

.tip-icon-success {
    background: #8BC34A;
}

.tip-box-success {
    color: #33691E;
    background: #DCEDC8;
    min-height: 70px;
}

.tip-icon-success::before {
    font-size: 25px;
    content: "\f00c";
    top: 8px;
    left: 11px;
    font-family: FontAwesome;
    position: absolute;
    color: white;
}

.tip-icon-success i::before {
    background: #8BC34A;
}

/*******info*******/
.new-message-box-alert {
    background: #F5F3BC;
    padding: 3px;
    margin: 10px 0px;
}

.tip-box-alert {
    background: #F4F2C2;
    min-height: 70px;
}

.tip-icon-alert {
    background: #FCAB4C;
}

    .tip-icon-alert::before {
        font-size: 25px;
        content: "\f06a";
        top: 8px;
        left: 11px;
        font-family: FontAwesome;
        position: absolute;
        color: white
    }

    .tip-icon-alert i::before {
        background: #FCAB4C;
    }





